home *** CD-ROM | disk | FTP | other *** search
/ Dictionaries & Language / Dictionaries and Language (Chestnut CD-ROM) (1993).iso / misc / fl_tut2 / compu2tr.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1987-06-11  |  20.4 KB  |  884 lines

  1.  
  2.  
  3.  {$R-}
  4. Program compu2tr;
  5. var
  6.    ami:integer;
  7.  
  8. function ColorMonitor:boolean;
  9. {returns TRUE if a Color monitor is installed}
  10. type regpack = record
  11.        ax,bx,cx,dx,bp,si,di,ds,es,flags:integer;end;
  12. var regs:regpack;
  13.    al:integer;
  14. begin
  15. regs.ax:=15 shl 8;
  16. intr($10,regs);
  17. al:=Lo(regs.ax);
  18. if al=$7 then ColorMonitor:=false else ColorMonitor:=true;
  19. end;
  20.  
  21.  
  22. procedure Title_Screen;
  23.           var
  24.              mark, x :integer;
  25.  
  26. begin {start title_screen}
  27.  
  28.       textcolor(0);
  29.       if colormonitor then
  30.                  textbackground(14)
  31.       else textbackground (1);
  32.  
  33.  
  34.       x:=0;
  35.       gotoxy(23,22);
  36.       write('█████████████████████████████');
  37.  
  38.       for x:=1 to 11 do
  39.       begin
  40.            gotoxy(32,10+x);
  41.            write('█         █');
  42.       end;
  43.  
  44.       gotoxy(12,10);write('████████████████████████████████████████████████████');
  45.  
  46.       For x:=1 to 3 do
  47.       begin
  48.            gotoxy(12,6+x);write('█                   █         █                    █');
  49.       end;
  50.  
  51.       gotoxy(12,6);write('█████████████████████         ██████████████████████');
  52.       gotoxy(16,8);write(' C  O  M  P');
  53.       gotoxy(45,8);write(' T  U  T  O  R');
  54.       gotoxy(31,5);write('█  ─╥  ╥─   █');gotoxy(34,6);write(' ║  ║');
  55.       gotoxy(35,7);    write('║  ║');     gotoxy(34,8);write(' ╚══╝');
  56.       gotoxy(12,24);write('by Elaine and Ken Woodward for the Boston Public Schools.');
  57.  
  58.  
  59. end;{end of title_screen}
  60.  
  61.  
  62. Procedure PullDownMenus;
  63.  
  64. const
  65.  
  66.        MaxItems=6; {Max Items on a Menu Bar}
  67.        MaxMenus=10; {Max Menus}
  68.        Width=21;    {Width of Pull Down Fields}
  69.  
  70. Type
  71.  
  72.    VideoMode =(Norm,Rev,Hi,Und,RevHi,Blink,BlinkHi,RevBlink,RevBlinkHi);
  73.    MaxString = String[255];
  74.    stringW = string[Width];
  75.  
  76.  
  77.    ProtoMenu = record
  78.         NumEntry :array[0..MaxItems] of integer;
  79.         Menu:array[0..MaxItems] of array[0..MaxItems] of stringW;
  80.         MenuName:stringW;
  81.         NoItems:integer;
  82.         end;
  83.  
  84.    MenuPtr = ^ProtoMenu;
  85.  
  86.    MenuAry =  array[1..MaxMenus] of MenuPtr;
  87.  
  88. var
  89.  
  90. i,NumMenus:integer;
  91. Menus:MenuAry;
  92. exit:boolean;
  93. VideoSeg:integer;{points to $B000 or $B800  for color or mono}
  94. botbox:maxstring;
  95.  
  96.  
  97. function ColorMonitor:boolean;
  98. {returns TRUE if a Color monitor is installed}
  99. type regpack = record
  100.        ax,bx,cx,dx,bp,si,di,ds,es,flags:integer;end;
  101. var regs:regpack;
  102.    al:integer;
  103. begin
  104. regs.ax:=15 shl 8;
  105. intr($10,regs);
  106. al:=Lo(regs.ax);
  107. if al=$7 then ColorMonitor:=false else ColorMonitor:=true;
  108. end;
  109.  
  110.  
  111. Procedure SetVideoSeg;
  112. begin
  113. if colormonitor then VideoSeg:=$B800 else VideoSeg:=$B000
  114. end;
  115.  
  116.  
  117. Procedure SetCursor(HiScan,LowScan:byte);
  118. type regpack = record
  119.        ax,bx,cx,dx,bp,si,di,ds,es,flags:integer;end;
  120. var regs:regpack;
  121. begin
  122. regs.ax:=1 shl 8;
  123. regs.cx:=HiScan shl 8 + LowScan;
  124. intr($10,regs);
  125. end;
  126.  
  127.  
  128. Procedure CursorNormal;
  129. begin
  130. if ColorMonitor then SetCursor(6,7) else  SetCursor(10,11);
  131. end;
  132.  
  133.  
  134. Procedure CursorBlock;
  135. begin
  136. if ColorMonitor then SetCursor(1,7) else  SetCursor(1,14);
  137. end;
  138.  
  139.  
  140. Procedure CursorOff;
  141. begin
  142. SetCursor(31,0);
  143. end;
  144.  
  145.  
  146.  
  147.  
  148. procedure GetKb(var chcode,extcode:integer);
  149.  
  150. (*Obtains the character and extended codes of a struck key. The codes are
  151.  removed from the buffer. This procedure will wait for a keystrike if the
  152.  buffer is empty.*)
  153.  
  154. type
  155.   RegPack = record
  156.        ax,bx,cx,dx,di,si,ds,es,flags : integer;
  157.      end;
  158. var
  159.   regs:RegPack;
  160.  
  161. begin
  162.   regs.ax := $0000;
  163.   intr($16,regs);
  164.   extcode := regs.ax shr 8;   ; (*extended code is AH*)
  165.   chcode := regs.ax and $00FF;    (*character code is AL*)
  166. end;
  167.  
  168.  
  169. function inchar(var ch:char;var ex:integer):boolean;{true if ASCII char}
  170. {Returns char and extended code from keyboard}
  171. var chcode,excode:integer;
  172. begin
  173. getkb(chcode,ex);
  174. if chcode=0 then
  175.     begin
  176.     inchar:=false;
  177.     ch:=chr(ex);
  178.     end
  179. else
  180.     begin
  181.     ch:=chr(chcode);
  182.     inchar:=true;
  183.     if ex<>0 then
  184.       if chcode in [8,13,9,27] then
  185.   begin
  186.   ex:=chcode;
  187.   inchar:=false;
  188.   end;
  189.     end;
  190. end;{inchar}
  191.  
  192. procedure Writeat(x,y:integer;writeMode:Videomode;Thestring:maxstring);
  193.  
  194. Var
  195.   i,j,k:integer;
  196.   Attribute:Byte;
  197.  
  198. Begin{1}
  199.   case WriteMode of {change these for color terminals}
  200.    Norm:       Attribute := $07;
  201.    Rev:        Attribute := $70;
  202.    Hi:         Attribute := $0F;
  203.    Und:        Attribute := $01;
  204.    RevHi:      Attribute := $78;
  205.    Blink:      Attribute := $87;
  206.    BlinkHi:    Attribute := $8F;
  207.    RevBlink:   Attribute := $F0;
  208.    RevBlinkHi: Attribute := $F8;
  209.    ELSE        Attribute := $07;{Normal}
  210.    end;
  211.  
  212.  
  213.    j := 2*((y-1)*80+(x-1));{offset in video buffer}
  214.    i:=1;
  215.    k:=length(thestring);
  216.    While i<=k do
  217.        begin
  218.        Mem[VideoSeg : j] := Byte(TheString[i]);
  219.        Mem[VideoSeg : (j+1)] := Attribute;
  220.        i:=i+1;
  221.        j:=j+2;
  222.        end;
  223. end;{1 of WriteAt}
  224.  
  225.  
  226.  
  227. Procedure LoadMenus(var MenuList:MenuAry);
  228. {loads the menu data file}
  229. var mark,i,j,k:integer;
  230.     f:text;
  231.     s:maxstring;
  232.  
  233. Procedure GetAMenu(var M:MenuPtr);
  234. label 99;
  235. var i,j,k:integer;
  236. begin
  237. i:=-1;
  238. j:=0;
  239. { s has been primed }
  240. M^.MenuName:=s;
  241. readln(f,s);
  242. s:=s+'           ';
  243. while (s[1]<>'*') and (not eof(f)) do
  244.    begin
  245.  
  246.    if s[1]<>' ' then
  247.      begin
  248.      if i>=0 then M^.NumEntry[i]:=j;
  249.      i:=i+1;
  250.      M^.Menu[i,0]:=s;
  251.      j:=0;
  252.      end
  253.  
  254.    else
  255.      if s[1]<>'*' then
  256.        begin
  257.        j:=j+1;
  258.        delete(s,1,1);
  259.        M^.Menu[i,j]:=s;
  260.        end
  261.      else goto 99;
  262.  
  263.  
  264.   readln(f,s);
  265.   s:=s+'            ';
  266.  
  267.   end;
  268.  
  269. 99:
  270. M^.NumEntry[i]:=j;
  271. M^.NoItems:=i;
  272.  
  273. end;{GetAMenu}
  274.  
  275. begin{Load}
  276.  
  277.     assign(f,'fl-menu.dat'); {**menu data file**}
  278.  
  279. reset(f);
  280.  
  281. i:=0;
  282. readln(f,s);
  283.  
  284. while not eof(f) do
  285.    begin
  286.    i:=i+1;
  287.    New(Menus[i]);
  288.    GetAMenu(Menus[i]);
  289.    end;
  290. NumMenus:=i;
  291.  
  292. close(f);
  293.  
  294. {some other initialization here}
  295.  
  296. botbox:='╚';
  297. for i:=1 to Width do botbox:=botbox+'═';
  298. botbox:=botbox+'╝';
  299.  
  300. end;{LoadMenu}
  301.  
  302.  
  303.  
  304.  
  305. procedure DoMenu(var itemsel,entrysel:integer;M:MenuPtr);
  306.  
  307. {this runs a menu, reads keys etc,}
  308. {itemsel and entrysel are returned}
  309.  
  310.  
  311. type
  312.    setofkeys=set of 0..132;
  313.  
  314. var
  315.    chc,ex:integer;
  316.    ch:char;
  317.    validkeys:setofkeys;
  318.    asc,selection:boolean;
  319.    item,entry:integer;
  320.    s1,s2:maxstring;
  321.  
  322.  
  323. Procedure PaintMenuBar;
  324. var
  325. i,sx:integer;
  326. widebar:integer;
  327. begin
  328.  
  329. clrscr;
  330.  
  331.  
  332. for widebar:=1 to 3 do
  333.     begin
  334.     writeat(1,widebar,rev,'                                                                                ');
  335.     end;
  336.  
  337. writeat(1,3,RevHi,'________________________________________________________________________________');
  338. for i:=0 to M^.NoItems do
  339.    begin
  340.    sx:=7+i*Width;
  341.    writeat(sx,2,rev,M^.Menu[i,0]);
  342.    end;
  343. end;{PaintMenuBar}
  344.  
  345.  
  346. Procedure Bright(ix,ij:integer);
  347. var sx:integer;
  348.     s:maxstring;
  349. begin
  350. s:=M^.Menu[ix,ij];
  351. sx:=ix*Width+4;
  352. writeat(sx+1,ij+3,Rev,s)
  353. end;
  354.  
  355.  
  356.  
  357. Procedure UnderScore(ix,ij:integer);
  358. var sx:integer;
  359.     s:maxstring;
  360. begin
  361. sx:=ix*Width+4;
  362. s:=M^.Menu[ix,ij];
  363. writeat(sx+1,ij+3,Und,s)
  364. end;
  365.  
  366.  
  367. Procedure Normal(ix,ij:integer);
  368. var sx:integer;
  369.     s:maxstring;
  370. begin
  371. sx:=ix*Width+4;
  372. if ij=0 then if sx<1 then sx:=1;
  373. s:=M^.Menu[ix,ij];
  374. writeat(sx+1,ij+3,Norm,s)
  375. end;
  376.  
  377.  
  378.  
  379. Procedure PushUp(ix:integer);
  380. var sx,i:integer;
  381. begin
  382. sx:=ix*Width+4;
  383. if sx<1 then sx:=1;
  384. for i:=1 to M^.NumEntry[ix]+1 do
  385.    writeat(sx,i+3,Norm,'                         ');
  386. end;
  387.  
  388. Procedure PullDown(ix:integer);
  389. const
  390.  
  391.     l:maxstring='║';
  392.     r:maxstring='║';
  393. var sx:integer;
  394.     s:maxstring;
  395.     j:integer;
  396. begin
  397. sx:=ix*Width+4;
  398. for j:=1 to M^.NumEntry[ix] do
  399.     begin
  400.     s:=l+'                     '+r;
  401.     writeat(sx,j+3,Norm,s);
  402.     s:=M^.Menu[ix,j];
  403.     writeat(sx+2,j+3,Norm,s);
  404.     end;
  405. if M^.NumEntry[ix]>0 then writeat(sx,M^.NumEntry[ix]+4,Norm,botbox);
  406. end;
  407.  
  408.  
  409. begin {DoMenu}
  410.  
  411. CursorOff;
  412.  
  413. validkeys:=[13,15,75,9,77,80,72,27];
  414.  
  415. entry:=1;
  416. item:=0;
  417. PaintMenuBar;
  418. PullDown(0);
  419. Bright(item,entry);
  420.  
  421. selection:=FALSE;
  422.  
  423. while not selection do
  424.    begin
  425.  
  426.    asc:= Inchar(ch,ex);
  427.  
  428.    if ex=0 then {Ctl-Brk hit}
  429.       begin
  430.       CursorNormal;
  431.       clrscr;
  432.       halt;
  433.       end;
  434.  
  435.    if not asc then
  436.    case ex{tended code} of
  437.  
  438.    13:{CR}
  439.       selection:=TRUE;
  440.  
  441.  
  442.       15, 75:{lefttab,left}
  443.       if item>0 then
  444.         begin
  445.         item:=item-1;
  446.         entry:=1;
  447.         pushup(item+1);
  448.         pulldown(item);
  449.         Bright(item,entry);
  450.         end;
  451.  
  452.        9, 77:{tab,right}
  453.       if item<M^.NoItems then
  454.         begin
  455.         item:=item+1;
  456.         entry:=1;
  457.         pushup(item-1);
  458.         pulldown(item);
  459.         entry:=1;
  460.         Bright(item,1);
  461.         end;
  462.  
  463.    80:{down}
  464.       begin
  465.       if entry<M^.NumEntry[item] then
  466.   begin
  467.   entry:=entry+1;
  468.   Normal(item,entry-1);
  469.   Bright(item,entry);
  470.   end
  471.       else
  472.         begin
  473.         entry:=1;
  474.         Normal(item,M^.NumEntry[item]);
  475.         Bright(item,entry);
  476.         end;
  477.       end;
  478.  
  479.    72:{up}
  480.       begin
  481.       if entry>1 then
  482.   begin
  483.   entry:=entry-1;
  484.   Normal(item,entry+1);
  485.   Bright(item,entry);
  486.   end
  487.       else
  488.         begin
  489.         entry:=M^.NumEntry[item];
  490.         Normal(item,1);
  491.         Bright(item,entry);
  492.         end;
  493.       end;
  494.    27:{Esc}
  495.         begin
  496.         selection:=TRUE;
  497.         item:=0;
  498.         entry:=0;
  499.         end;
  500.  
  501.    end;{case}
  502.  
  503.    end;{while not selection}
  504. itemsel:=item;
  505. entrysel:=entry;
  506.  
  507. CursorNormal;
  508.  
  509. end;{DoMenu}
  510.  
  511.  
  512.  
  513. Procedure RunMenus;
  514.  
  515. {  Skeleton Procedure that you flesh out to run your menu tree.}
  516.  
  517. var
  518. exit:boolean;
  519. ch:char;
  520. Active,index,item,entry:integer;
  521.  
  522. begin {RunMenu}
  523.  
  524. exit:=FALSE;
  525. Active:=1;
  526.  
  527. while not exit do
  528.   begin
  529.  
  530.   DoMenu(item,entry,Menus[Active]);
  531.  
  532.   index:=Active*100+item*10+entry;
  533.  
  534.   case index of {fill this in appropriately with structure}
  535.  
  536.   211,311: begin
  537. Active:=1;
  538. end;
  539.  
  540.   101: begin
  541.  Active:=2; {select next Menu}
  542.  end;
  543.  
  544.   102: begin
  545.  Active:=3; {select next Menu}
  546.  end;
  547.  
  548.   110,111: begin
  549.      gotoxy(10,10);
  550.      writeln(' Use the right and left arrow keys to move from one menu to another and the up/down arrows to select items.');
  551.      delay(4000);
  552.      end;
  553.  
  554.  
  555.   103,112,212,312: begin
  556.        gotoxy(10,10);
  557.        write(' Do You Really Want to Quit? ');
  558.        readln(ch);
  559.        if ch in ['Y','y'] then exit:=TRUE;
  560.        end;
  561.  
  562.  
  563.   212,312:begin
  564.    Active:=1;
  565.    end;
  566.  
  567.   201,202,203,301,302,303: begin
  568.        clrscr;
  569.        ami:=index;
  570.        exit:=true;
  571.        end;
  572.  
  573.  
  574.    end;{case}
  575. end;
  576.  
  577. end;{RunMenus}
  578.  
  579.  
  580.  
  581. begin{main}
  582.  
  583. CursorNormal;
  584.  
  585. SetVideoSeg;
  586. LoadMenus(Menus);
  587. RunMenus;
  588. end; {end of pulldownmenus}
  589.  
  590.  
  591.  
  592.  
  593. Procedure fl_tutor(ami:integer);
  594.  
  595. Label 999;
  596. Const
  597.      maxWords=501;
  598.      w=55;
  599.  
  600.  
  601. Type
  602.     maxstring=string[255];
  603.     wstring=string[w];
  604.  
  605.  
  606. Var
  607.      M,IT,E,z,r,a :integer;
  608.          f :text;
  609.          s :maxstring;
  610.          Word:array[0..maxWords] of wstring;
  611.          Def :array[0..maxwords] of wstring;
  612.          key_ret:char;
  613.          back:boolean;
  614.          new_def:array[0..4] of wstring;
  615.          right,wrong:integer;
  616.          keyset:set of char;
  617.          temp:wstring;
  618.  
  619. Procedure Draw_screen;
  620.          begin
  621.               gotoxy (3,4);write('╔════════════════════════════════════════════╗');
  622.               gotoxy(3,10);write('╚════════════════════╤═══════════════════════╝');
  623.               gotoxy( 3,5);write('║                                            ║');
  624.               gotoxy (3,6);write('║  Choose the word that means                ║');
  625.               gotoxy (3,7);write('║                                            ║');
  626.               gotoxy (3,8);write('║                        and type it below.  ║');
  627.               gotoxy (3,9);write('║                                            ║');
  628.               gotoxy (24,11);write('│');
  629.               gotoxy (24,12);write('│');
  630.               gotoxy (24,13);write('│');
  631.               gotoxy (24,14);write('│');
  632.               gotoxy (11,15);write('┌────────────┴─────────────┐');
  633.               gotoxy (11,19);write('╘══════════════════════════╛');
  634.               gotoxy (11,16);write('│                          │');
  635.               gotoxy (11,17);write('│                          │');
  636.               gotoxy (11,18);write('│                          │');
  637.  
  638.          end;
  639.  
  640. procedure choices;
  641.      VAR
  642.         new_def:string[27];
  643.  
  644.           begin
  645.                gotoxy (45,16);        write('╓─────────────────────────────────╖');
  646.                gotoxy (38,17); write('╞══════╣       choose from below         ║');
  647.                gotoxy (45,18);       write ('╟─────────────────────────────────╢');
  648.                gotoxy (45,19);       write ('║                                 ║');
  649.                gotoxy (45,20);       write ('║                                 ║');
  650.                gotoxy (45,21);       write ('║                                 ║');
  651.                gotoxy (45,22);       write ('║                                 ║');
  652.                gotoxy (45,23);       write ('║                                 ║');
  653.                gotoxy (45,24);       write ('╙─────────────────────────────────╜');
  654.  
  655.                if (it)>480 then a:=(it-20)
  656.                   else a:=it;
  657.                   delete(def[a+1],29,10);
  658.                   gotoxy(48,19);write(def[a+1]);
  659.                   delete(def[a+5],29,10);
  660.                   gotoxy(48,20);write(def[a+5]);
  661.                   delete(def[a+10],29,10);
  662.                   gotoxy(48,21);write(def[a+10]);
  663.                   delete(def[a+15],29,10);
  664.                   gotoxy(48,22);write(def[a+15]);
  665.                   delete(def[a+20],29,10);
  666.                   gotoxy(48,23);write(def[a+20]);
  667.                randomize;
  668.                z:=random(4);
  669.                new_def:='                         ';
  670.                insert(def[it],new_def,1);
  671.                delete(def[it],25,10);
  672.                gotoxy(48,19+z);write(new_def);
  673.            end;
  674.  
  675. procedure answer(it:integer);
  676.       CONST
  677.            sp = ' '; cr = ^M;
  678.            mesg1='Good work!   Tres bien.';
  679.            mesg2='Sorry!  Try again.';
  680.            mesg3='Good work!   ¡Muy bien!';
  681.  
  682.       VAR
  683.            ch:char;
  684.             t:integer;
  685.          answ:wstring;
  686.          ndef:wstring;
  687.          ddef:wstring;
  688.             S:wstring;
  689.  
  690.  
  691. function STRIP ( S : wString):wstring;
  692.                                      { Removes characters other than
  693.                                                     letters  a...z }
  694. var
  695.      space:set of char;
  696.      zz,lngths:integer;
  697.      new_s:wstring;
  698. begin
  699.      lngths:=length(s);
  700.      new_s:=s;
  701.      space:=[chr($39),chr($08),chr($07),chr($09),' ',^M,'@'];
  702.      for zz:=1 to lngths do
  703.          begin
  704.          if new_s[zz] in space then delete(new_s,zz,1);
  705.          end;
  706.  
  707.      s:=new_s;
  708.      strip:=s;
  709.  
  710. end;    {strip function ends}
  711.  
  712.  
  713. procedure ReadAt(x,y,nchars:integer;var TheString:wstring);
  714. { performs read from video buffer}
  715. Var
  716.   i,j:integer;
  717.   Attribute:Byte;
  718.   videoseg:integer;
  719.  
  720. Begin{1}
  721. TheString:='';
  722.    if colormonitor then videoseg:=$B800 else videoseg:=$B000;
  723.    j := 2*((y-1)*80+(x-1));{offset in video buffer}
  724.    i:=1;
  725.    While (i<=nchars) do
  726.        begin{3}
  727.        TheString:=TheString+chr(ord(Mem[VideoSeg:j]));
  728.        i:=i+1;
  729.        j:=j+2;
  730.        end;{3}
  731. end;{1 of ReadAt}
  732.  
  733.  
  734.           begin    {answer - main procedure}
  735.              choices;
  736.              s:='';
  737.              gotoxy(15,17);
  738.              answ:='';
  739.              WHILE ch <>cr do
  740.                    begin
  741.                    read(kbd,ch);
  742.                    ch:=upcase(ch);
  743.                    write(ch);
  744.                    readat(15,17,length(def[it]),answ);
  745.                    end;
  746.               ndef:=def[it];
  747.               ddef:='';
  748.               for t:=1 to length(ndef)  do
  749.                   begin
  750.                      ch:=ndef[t];
  751.                      if (ch='à') or (ch='á') then ch:='a';  {translate alt char}
  752.                      if ch='ù' then ch:='u';
  753.                      if (ch='è') or (ch='é') then ch:='e';
  754.                      if ch='í' then ch:='i';
  755.                      if ch='ó' then ch:='o';
  756.                      if ch='ñ' then ch:='n';
  757.                      ch:=upcase(ch);
  758.                      ddef:=ddef+ch;
  759.                   end;
  760.  
  761.                      s:=ddef;
  762.                      ndef:=strip(s);      {strip spaces }
  763.                      s:='';
  764.                      s:=answ;
  765.                      answ:=strip(s);
  766.               if answ=ndef then
  767.                   begin
  768.                   gotoxy(5,22);
  769.                   if m=2 then write(mesg1)
  770.                      else write (mesg3);
  771.                   write(' - -  corrrect');
  772.                   right:=right+1;
  773.                   delay(1000);
  774.                   exit;
  775.                   end                           {correct response}
  776.                else gotoxy(5,22);write(mesg2);  {incorrect response}
  777.                window(12,16,37,18); textcolor (11);textbackground(0);
  778.                clrscr;
  779.                gotoxy(4,1);write(word[it],' means');
  780.                gotoxy(10,3);write(def[it]);delay (2500);
  781.                window(1,1,80,25);
  782.                wrong:=wrong+1;
  783.                delay(2000);
  784.  
  785.           end; {finish answer procedure}
  786.  
  787.  
  788.  
  789.           begin  {begin fl-tutor}
  790.             clrscr;
  791.             textcolor(0);textbackground(7);
  792.             m:=trunc(ami/100);
  793.             e:=(ami-(trunc(ami/100)*100));
  794.                if m=2 then                         {*******French Tutor********}
  795.                   if e=1 then assign(f,'fr_tut1.dat') {*level 1*}
  796.                   else
  797.                       if e=2 then assign(f,'fr_tut2.dat') {*level 2*}
  798.                   else
  799.                       assign(f,'fr_tut3.dat') {*level 3*}
  800.                else
  801.                    if m=3 then                      {*********Spanish Tutor**********}
  802.                       if e=1 then assign(f,'sp_tut1.dat'){*level 1*}
  803.                       else
  804.                           if e=2 then assign(f,'sp_tut2.dat') {*level 2*}
  805.                       else
  806.                           assign(f,'sp_tut3.dat'); {*level 3*}
  807.                 reset(f);
  808.                 it:=0;
  809.                 z:=0;
  810.                 gotoxy(2,22);write('*** LOADING  LEVEL ',e,' ***');
  811.                   for a:= 1 to 500 do
  812.                       begin
  813.                       readln(f,s);
  814.                       z:=pos(',',s);
  815.                       word[a]:=copy(s,1,z-1);
  816.                       def[a]:=copy(s,z+1,28);
  817.                       end;
  818.  
  819.                close(f);
  820.                r:=0;
  821.                right:=0;
  822.                wrong:=0;
  823.  
  824.      999:      while r<16 do
  825.  
  826.                      begin
  827.                      clrscr;
  828.                      draw_screen;
  829.                      randomize;
  830.                      it:=random(500);
  831.                      if it<1 then goto 999;
  832.                      if it>(500) then goto 999;
  833.                      if colormonitor then textcolor(4)
  834.                         else textcolor(12);
  835.                      gotoxy(13,7);Write(word[it]);
  836.                      if colormonitor then textcolor(0)
  837.                         else textcolor(12);
  838.                      answer(it);
  839.                      r:=r+1;
  840.                      textcolor(9); textbackground(12);
  841.                      gotoxy(3,20);write('**      You have answered ',right,'            ');gotoxy(42,20);write('**');
  842.                      gotoxy(3,21);
  843.              if r=1 then write('**           question right and          ')
  844.                      else write('**          questions right and         ');
  845.                      gotoxy(42,21);write('**');
  846.                      gotoxy(3,22);write('**                ',wrong,' wrong.             ');gotoxy(42,22);write('**');
  847.                      delay(2000);
  848.                      textcolor(0); textbackground(7);
  849.                      end;
  850.           keyset:=['y','Y','n','N'];
  851.           clrscr;
  852.           gotoxy(10,10);write('If you would like to continue, press -- Y -- .');
  853.           gotoxy(10,12);write('  If you would like to stop, press  --  N -- .');
  854.           repeat
  855.                  read(kbd,key_ret);
  856.                  key_ret:=upcase(key_ret);
  857.                  until key_ret in keyset;
  858.           if key_ret='Y' then
  859.              begin
  860.              r:=0;
  861.              for a:= 1 to 500 do
  862.                  begin
  863.                  temp:=word[a];
  864.                  word[a]:=def[a];
  865.                  def[a]:=temp;
  866.                  end;
  867.              goto 999;
  868.              end
  869.  
  870.           else halt;
  871.           end;  {end of tutor}
  872.  
  873.  
  874.  
  875. begin {compu2tr }
  876.  
  877.     ami:=0;
  878.     clrscr;
  879.     Title_Screen;
  880.     delay(2000);
  881.     pulldownmenus;
  882.     fl_tutor(ami);
  883. end.  {end of program}
  884.